HTMLify

style.css
Views: 97 | Author: khushi
*{
 background-color: lightcoral;   
 margin: 0;
 align-items: center;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
  text-decoration: none;
    scroll-behavior: smooth;
}
.nav{
    background-color: black;
    padding: 20px 60px;
    text-decoration: none;
    display: flex;
    margin-right: 3px;
    justify-content: space-between;
}
.navlink{
    margin-left: 40px;
    display: flex;
}
.navlink a {
    margin-right: 40px;
}
.image{
    border: 0 0 solid;
    border-radius: 5px;
    margin-top: 10px;
    text-align: left;
    display: flex;
}
.image h2 {
    margin-right: 20px;
}
.menu{
    margin-top: 30px ;
    text-align: center;
    background-color: rebeccapurple;
}
.menu h1{
text-align: center;
background-color: rebeccapurple;
padding: 10 px;
display:  inline-block;
  }
.gallery {
    display: flex;
    float: left;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 30px;
}

.item {
    width: 250px;
    background-color:black;
    border-radius: 8px;
    margin: 5px;
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.item img:hover{
    
}

Comments